home *** CD-ROM | disk | FTP | other *** search
/ Education (Super OZ Shareware) / Education (Super OZ Shareware).iso / arj / testarj.bat < prev    next >
DOS Batch File  |  1993-07-20  |  2KB  |  36 lines

  1. REM TESTARJ.BAT, ARJ, 03/08/93
  2. echo off
  3. echo  .
  4. echo  TESTARJ.BAT - batch file to test the reliability of ARJ
  5. echo  .
  6. echo  This is a batch file to test the reliability of ARJ compressing
  7. echo  and decompressing all of your files.  This test will take a LONG
  8. echo  TIME (HOURS, MAYBE DAYS) and will process all of the files on your
  9. echo  C drive in six phases.  You can interrupt or shorten any test
  10. echo  phase by pressing CTL BREAK.  You can also shorten this test by
  11. echo  editing this batch file and deleting the lines with -m2, -m3, and
  12. echo  -m4.  This test will create files named TESTVOL$.### and then
  13. echo  delete them.  If the test proceeds to its end successfully, you
  14. echo  will know that ARJ is compatible with your computer and its files.
  15. echo  .
  16. echo  COMMAND SYNTAX:  testarj execute
  17. echo  .
  18. if NOT "%1" == "execute" goto end
  19.  
  20. echo on
  21. ARJ a testvol$.000 c:\*.* -i1 -m0 -r "-v360sdel testvol$.*" -xtestvol$.* -y -jf -jitestarj.inx -jt1 -jv
  22. if errorlevel 1 pause
  23. ARJ a testvol$.000 c:\*.* -i1 -jm -r "-v360sdel testvol$.*" -xtestvol$.* -y -jf -jitestarj.inx -jt1 -jv
  24. if errorlevel 1 pause
  25. ARJ a testvol$.000 c:\*.* -i1 -m1 -r "-v360sdel testvol$.*" -xtestvol$.* -y -jf -jitestarj.inx -jt1 -jv
  26. if errorlevel 1 pause
  27. ARJ a testvol$.000 c:\*.* -i1 -m2 -r "-v360sdel testvol$.*" -xtestvol$.* -y -jf -jitestarj.inx -jt1 -jv
  28. if errorlevel 1 pause
  29. ARJ a testvol$.000 c:\*.* -i1 -m3 -r "-v360sdel testvol$.*" -xtestvol$.* -y -jf -jitestarj.inx -jt1 -jv
  30. if errorlevel 1 pause
  31. ARJ a testvol$.000 c:\*.* -i1 -m4 -r "-v360sdel testvol$.*" -xtestvol$.* -y -jf -jitestarj.inx -jt1 -jv
  32. if errorlevel 1 pause
  33. del testvol.*
  34. REM end of test
  35. :end
  36.